If the Tell-a-Friend application fails to send any actual mails, you'll probably find it's becuase you don't have the SMTP server set up in the PHP.ini file. If you go with the executable version of the PHP install and choose custom mode then you should get a dialogue asking you for an outgoing SMTP server address - and on a Windows system this is required. On Linux systems the mail is delivered by the ever-present sendmail program.
 
To correct, scan through the PHP.ini file for an entry that looks like the following:
 
[mail function]
; For Win32 only.
SMTP = localhost
 
and change this to...
 
[mail function]
; For Win32 only.
SMTP = smtp.yourisp.com
 
...or whatever the smtp address of your ISP is - that should get it working!

------------------------------------------------------------------------
For support, visit www.phpforflash.com or e-mail support@phpforflash.com
------------------------------------------------------------------------
